Merged
Conversation
Contributor
Benchmarks: PolarSignals ProfilingSummary
Detailed Results Table
|
Contributor
Benchmarks: TPC-H SF=1 on NVMESummary
Detailed Results Table
|
Contributor
Benchmarks: FineWeb NVMeSummary
Detailed Results Table
|
Contributor
Benchmarks: TPC-H SF=1 on S3Summary
Detailed Results Table
|
Contributor
Benchmarks: TPC-DS SF=1 on NVMESummary
Detailed Results Table
|
Contributor
Benchmarks: TPC-H SF=10 on NVMESummary
Detailed Results Table
|
Contributor
Benchmarks: FineWeb S3Summary
Detailed Results Table
|
Contributor
Benchmarks: Statistical and Population GeneticsSummary
Detailed Results Table
|
Contributor
Benchmarks: TPC-H SF=10 on S3Summary
Detailed Results Table
|
Contributor
Benchmarks: Clickbench on NVMESummary
Detailed Results Table
|
Contributor
Polar Signals Profiling ResultsLatest Run
Previous Runs (7)
Powered by Polar Signals Cloud |
Contributor
Benchmarks: Random AccessSummary
Detailed Results Table
|
AdamGS
reviewed
Feb 19, 2026
AdamGS
reviewed
Feb 19, 2026
Contributor
|
Is there maybe a way to set these up as a additional benchmark variant for one of the benchmarks so we can see the constant comparison? |
robert3005
reviewed
Feb 19, 2026
Contributor
|
+1 for @robert3005 idea to benchmark both variants |
Signed-off-by: Nicholas Gates <nick@nickgates.com>
Signed-off-by: Nicholas Gates <nick@nickgates.com>
Signed-off-by: Nicholas Gates <nick@nickgates.com>
Signed-off-by: Nicholas Gates <nick@nickgates.com>
Signed-off-by: Nicholas Gates <nick@nickgates.com>
lwwmanning
reviewed
Feb 23, 2026
| /// Set the path glob for file discovery. | ||
| /// | ||
| /// This path should be relative to the filesystem's base URL. | ||
| pub fn with_glob(mut self, glob: impl Into<String>) -> Self { |
Contributor
There was a problem hiding this comment.
should figure out a way to pass a list of explicit files rather than a glob (listing files is slow on object storage)
Contributor
There was a problem hiding this comment.
Maybe we could lazily expand globs? Something along the lines of duckdb/duckdb#20619
Signed-off-by: Nicholas Gates <nick@nickgates.com>
lwwmanning
approved these changes
Feb 23, 2026
Signed-off-by: Nicholas Gates <nick@nickgates.com>
Signed-off-by: Nicholas Gates <nick@nickgates.com>
fastio
pushed a commit
to fastio/vortex
that referenced
this pull request
Mar 10, 2026
We switched over to using DuckDB's own file system for I/O. For some reason we have really binary performance benchmarks, either the same performance as before, or really really slow. We are going to investigate, but in the meantime this change abstracts the I/O behind a file system and allows us to configure whether to use Vortex I/O or DuckDB I/O. This abstraction was planned and built in vortex-data#6391 anyway, so just making use of it a little sooner. As part of this change, we have a `FileSystem::list -> Stream` API. We used to use the async-compat crate to provide Tokio support within DuckDB, but that crate doesn't support streams. This PR inlines the core piece of logic from that crate and provides wrappers for I/O. To summarise: 1. Pulls out the FileSystem trait as used in vortex-data#6391 1. Uses the trait to make fs configurable in DuckDB. Defaults to Vortex I/O as per before vortex-data#5767 , with extension option to enable DuckDB native file system. 1. Clean up of the vortex-io crate for consistent structure + naming, as well as providing a "compat" module with compatibility wrappers. --------- Signed-off-by: Nicholas Gates <nick@nickgates.com>
fastio
pushed a commit
to fastio/vortex
that referenced
this pull request
Mar 10, 2026
Experiment to use the Scan API from DuckDB and DataFusion integrations. This PR introduces: * `vortex::file::MultiFileDataSource` - a data source builder that takes a listing of files, (in the future) unifies schemas, adds support for hive-style partitioning columns, etc, etc. * `vortex::scan::api` - improvements to the Scan API as have become apparent while implementing support in two engines. I'd like to implement more engines before we decide on a path to stability. --------- Signed-off-by: Nicholas Gates <nick@nickgates.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Experiment to use the Scan API from DuckDB and DataFusion integrations.
This PR introduces:
vortex::file::MultiFileDataSource- a data source builder that takes a listing of files, (in the future) unifies schemas, adds support for hive-style partitioning columns, etc, etc.vortex::scan::api- improvements to the Scan API as have become apparent while implementing support in two engines. I'd like to implement more engines before we decide on a path to stability.